home *** CD-ROM | disk | FTP | other *** search
/ Sprite 1984 - 1993 / Sprite 1984 - 1993.iso / src / lib / c / string / RCS / strpbrk.c,v < prev    next >
Text File  |  1989-03-22  |  2KB  |  97 lines

  1. head     1.2;
  2. branch   ;
  3. access   ;
  4. symbols  ;
  5. locks    ; strict;
  6. comment  @ * @;
  7.  
  8.  
  9. 1.2
  10. date     89.03.22.16.07.46;  author rab;  state Exp;
  11. branches ;
  12. next     1.1;
  13.  
  14. 1.1
  15. date     88.07.22.09.00.15;  author ouster;  state Exp;
  16. branches ;
  17. next     ;
  18.  
  19.  
  20. desc
  21. @@
  22.  
  23.  
  24. 1.2
  25. log
  26. @*** empty log message ***
  27. @
  28. text
  29. @/* 
  30.  * strpbrk.c --
  31.  *
  32.  *    Source code for the "strpbrk" library routine.
  33.  *
  34.  * Copyright 1988 Regents of the University of California
  35.  * Permission to use, copy, modify, and distribute this
  36.  * software and its documentation for any purpose and without
  37.  * fee is hereby granted, provided that the above copyright
  38.  * notice appear in all copies.  The University of California
  39.  * makes no representations about the suitability of this
  40.  * software for any purpose.  It is provided "as is" without
  41.  * express or implied warranty.
  42.  */
  43.  
  44. #ifndef lint
  45. static char rcsid[] = "$Header: /sprite/src/lib/c/string/RCS/strpbrk.c,v 1.1 88/07/22 09:00:15 ouster Exp Locker: rab $ SPRITE (Berkeley)";
  46. #endif /* not lint */
  47.  
  48. #include <string.h>
  49.  
  50. /*
  51.  *----------------------------------------------------------------------
  52.  *
  53.  * strpbrk --
  54.  *
  55.  *    Search a string for a character from a given set.
  56.  *
  57.  * Results:
  58.  *    The return value is the address of the first character
  59.  *    in "string" that is also a character in "chars".  If there
  60.  *    is no such character, then 0 is returned.
  61.  *
  62.  * Side effects:
  63.  *    None.
  64.  *
  65.  *----------------------------------------------------------------------
  66.  */
  67.  
  68. char *
  69. strpbrk(string, chars)
  70.     register char *string;        /* String to search. */
  71.     char *chars;            /* Characters to look for in string. */
  72. {
  73.     register char c, *p;
  74.  
  75.     for (c = *string; c != 0; string++, c = *string) {
  76.     for (p = chars; *p != 0; p++) {
  77.         if (c == *p) {
  78.         return string;
  79.         }
  80.     }
  81.     }
  82.     return 0;
  83. }
  84. @
  85.  
  86.  
  87. 1.1
  88. log
  89. @Initial revision
  90. @
  91. text
  92. @d17 4
  93. a20 2
  94. static char rcsid[] = "$Header: strlen.c,v 1.3 88/07/02 14:33:08 ouster Exp $ SPRITE (Berkeley)";
  95. #endif not lint
  96. @
  97.